@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tajawal", sans-serif;
}

button,
.btn,
input,
textarea {
  box-shadow: none !important;
}
a {
  text-decoration: none;
}

#btn-back-to-top {
  position: fixed;
  bottom: 30px;
  left: 40px;
  display: none;
  justify-content: center;
  align-items: center;
}

.btn-danger {
  background-color: white !important;
  border-color: white !important;
  border-radius: 8px;
  width: 130px;
  height: 43px;
  padding-top: 8px;
  position: relative;
  font-weight: 500;
  z-index: 0;
  overflow-y: hidden;
  display: inline-block;
  color: #1479fe !important;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.btn-danger:hover {
  background-color: #fbb93b !important;
  border-color: #fbb93b !important;
  color: white !important;
}
.btn-light {
  width: 50px !important;
  height: 50px !important;
  background-color: #ffc34f;
  border-radius: 50% !important;
  border: 1px solid #ffc34f;
  color: white;
  text-align: center;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
}

.btn-light:hover {
  background-color: #1c91f0;
  border: 1px solid #1c91f0;
  color: white;
}

.float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 40px;
  background-color: #00c74a;
  color: #fff !important;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 1px 1px 2px #999;
  z-index: 100;
}

@media (max-width: 575px) {
  .float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    right: 20px;
  }
}
.my-float {
  margin-top: 5px;
}

.float {
  animation: zoom-in-zoom-out 1s ease-out infinite;
  -webkit-animation: zoom-in-zoom-out 1s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #0d67d5d0 !important;
  box-shadow: -1px 0px 5px rgb(57 63 72 / 30%) !important;
  transition: display 5s 3s ease !important;
}

.sticky > .nav {
  padding-top: 0px !important;
}

/* land sec start */

.land-sec {
  background-color: #0d68d5;
}

.land-sec .header .navbar-nav .nav-link {
  font-weight: 400 !important;
  line-height: 22px;
  color: white;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  position: relative;
  padding-right: 0px;
}

.sidebar li .submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.dropdow {
  position: relative;
  display: inline-block;
}

.dropdow-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.dropdow-content a {
  color: #0c6adb;
  padding: 10px 16px !important;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.dropbtn {
  font-size: 16px;
  color: white !important;
}

.dropbtn i {
  font-size: 12px !important;
}

@media (max-width: 1400px) {
  .dropbtn {
    font-size: 15px !important;
  }
}

.dropdow-content a:hover {
  background-color: #fbb93b;
  color: white;
}

.dropdow:hover .dropdow-content {
  display: block;
  margin-left: 10px;
}

.offcanvas-body .nav-link {
  height: 20px !important;
}

.land-sec .top-icons a i {
  color: white;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  font-size: 18px;
}

.land-sec .top-icons a:hover i {
  color: #fbb93b;
}

.land-sec .header .navbar-nav .nav-link:hover {
  color: #ffc34f;
}

.land-sec .header .navbar-nav .active {
  font-weight: 500 !important;
  color: #ffc34f;
}

.land-sec .header .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  background-color: #ffc34f;
  border-radius: 10px;
  height: 3px;
  width: 50%;
  bottom: 0;
  right: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: none;
}
.land-sec .header .navbar-nav .active::after {
  display: block;
}

.land-sec .header .offcanvas-start {
  transition: all 1s !important;
  -webkit-transition: all 1s !important;
  -moz-transition: all 1s !important;
  -ms-transition: all 1s !important;
  -o-transition: all 1s !important;
}
.land-sec .header .offcanvas-start .navbar-nav .nav-link {
  font-weight: 400 !important;
  line-height: 22px;
  color: white;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  position: relative;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.land-sec .header .offcanvas-start .navbar-nav .nav-link:hover {
  color: #ffc34f;
}

.land-sec .header .offcanvas-start .navbar-nav .active {
  color: #ffc34f;
}
.land-sec .header .offcanvas-start .navbar-nav .active::after {
  display: none;
}
.land-sec .navbar-light .nav-toggle {
  color: white !important;
  font-size: 30px !important;
  font-weight: bold;
  display: block;
}
@media (min-width: 768px) {
  .land-sec .navbar-light .nav-toggle {
    display: none;
  }
}

.land-sec .header .offcanvas {
  background-color: #0454b5;
}

@media (min-width: 500px) {
  .land-sec .header .offcanvas {
    width: 50%;
  }
}
.land-sec .header .offcanvas-header .btn-close {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
}

.btn-info {
  background-color: transparent !important;
  border-color: #fab33f !important;
  border-radius: 4px;
  width: 155px;
  height: 41px;
  font-weight: 500;
  padding-top: 8px;
  position: relative;
  z-index: 0;
  overflow-y: hidden;
  display: inline-block;
  color: #fab33f !important;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.btn-info:hover {
  background-color: #fab33f !important;
  color: white !important;
}

.first-head {
  background: #fdfdfd;
  box-shadow: -3px -4px 16px rgba(0, 0, 0, 0.25);
}

.top-icon a {
  color: #293462 !important;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.top-icon a:hover {
  color: #fab33f !important;
}

.conact-num i {
  color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
}

.conact-num p {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}

@media (max-width: 400px) {
  .conact-num p {
    font-size: 13px !important;
  }
  .conact-num i {
    font-size: 13px !important;
  }
}

@media (max-width: 330px) {
  .conact-num p {
    font-size: 11px !important;
  }
  .conact-num i {
    font-size: 11px !important;
  }
}
.btn-dark {
  background: #128c7e !important;
  border-radius: 4px !important;
  border-color: #128c7e !important;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -ms-border-radius: 4px !important;
  -o-border-radius: 4px !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.btn-dark:hover {
  background-color: #dfae54 !important;
  border-color: #dfae54 !important;
}

/* land sec end */

/* about us start */

.about-us {
  margin-bottom: 7rem;
  margin-top: 7rem;
}

.about-us-descrip h2 {
  font-weight: 700 !important;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.5px;

  color: #00080c !important;
}

.about-us-descrip p {
  font-weight: 700;
  font-size: 18px;
  line-height: 40px;
  letter-spacing: -0.5px;
  color: rgba(0, 0, 0, 0.5);
}

.about-us h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 50px;
  letter-spacing: -0.5px;
  color: #0a0000;
}

/* about us end */

/* fut start */

.fut-sec {
  margin-bottom: 7rem;
}

.fut-sec .fut-img {
  background: #ffffff;
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.09);
  width: 115px;
  height: 115px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.fut-sec h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 50px;
  letter-spacing: -0.5px;
  color: #0a0000;
}

.close-card {
  display: flex;
  width: 100%;
  height: 170px !important;
}

.fut-sec .open-card {
  display: none;
  width: 100%;
  height: 170px;
  background: #ffffff;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.1);
  padding: 5px;
}
.fut-sec .col-xl-2 {
  cursor: pointer;
}
.fut-sec .col-xl-2:hover .open-card {
  display: flex;
}

.fut-sec .col-xl-2:hover .close-card {
  display: none;
}

.fut-sec p {
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #0a0000;
}

/* fut end */

/* order start */
.order-sec {
  margin-bottom: 10rem;
  margin-top: 6rem;
}
.order-sec h3 {
  font-weight: 700;
  font-size: 20px !important;
  line-height: 24px;
  color: #0b84ee;
}

.order-sec p {
  font-weight: 500 !important;
  font-size: 19px;
  line-height: 23px;
  color: #000000;
}

.btn-outline-primary {
  border: 1px solid #0b84ee !important;
  border-radius: 33px;
  color: #0b84ee !important;
  width: 204px;
  height: 52px;
  font-weight: 500;
  font-size: 19px;
  line-height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-outline-primary:hover {
  background-color: #0d68d5 !important ;
  border: 1px solid #0d68d5 !important;
  color: white !important;
}

/* order end */

/* qa-sec start */

.qa-sec .qa-side {
  background: linear-gradient(105.99deg, #0c68d7 9.48%, #0c68d6 97.98%);
}
.qa-sec .qa-side h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}

.accordion-button {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: right;
  background: #0b84ee !important;
  border-radius: 2px !important;
  border-color: transparent !important;
  color: white !important;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  -ms-border-radius: 2px !important;
  -o-border-radius: 2px !important;
  margin-bottom: 25px;
  height: 52px !important;

  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 22px;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: auto;
  content: "";
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff' ><path fill-rule='evenodd'  font-weight='border' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  font-weight: bold;
}
.accordion-item {
  background-color: transparent !important;
  border: none !important;
  color: white !important;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}

.accordion-body {
  padding: 0.5rem 0rem;
  padding-bottom: 2rem;
}

.accordion {
  width: 90%;
}
.acor {
  align-items: center;
}

@media (min-width: 600px) {
  .accordion {
    width: 75%;
  }
  .acor {
    padding-right: 6rem;
    align-items: flex-start;
  }
}
/* qa-sec end */

/* footer start */

footer {
  background-color: #0454b5;
}

footer .nav-link {
  padding-right: 0px;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
footer .nav-link:hover {
  color: #fbb93b;
  margin-right: 5px;
}

footer h5 {
  font-weight: 700 !important;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}

footer .contact-icon i {
  color: white;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  font-size: 18px;
}
footer .contact-icon:hover i {
  color: #fbb93b;
}
.contact-form p {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
}
.contact-form .form-control {
  background: #ffffff;
  border-radius: 8px;
}
input[type="email"] {
  direction: rtl;
}

input::placeholder,
textarea::placeholder {
  font-weight: 500;
  font-size: 12px !important;
  line-height: 14px;
  color: #c6c6c6 !important;
}

.btn-secondary {
  background: linear-gradient(94.82deg, #0756b5 11.2%, #21a0ff 94.99%);
  box-shadow: 0px 4px 25px rgba(206, 60, 60, 0.25);
  border-radius: 4px 4px 44px 4px;
  font-weight: 500;
  font-size: 14px !important;
  line-height: 17px;
  color: #ffffff;
  width: 90px;
  height: 30px;
  border: none !important;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.btn-secondary:hover {
  opacity: 70%;
}
